home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2001 September / PC-WELT 9-2001.ISO / software / hw / brennen / flask_src.exe / Misc / Graph.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-06  |  1.3 KB  |  50 lines

  1. /* 
  2.  *  Graph.h
  3.  *
  4.  *    Copyright (C) Alberto Vigata - January 2000 - ultraflask@yahoo.com
  5.  *
  6.  *  This file is part of FlasKMPEG, a free MPEG to MPEG/AVI converter
  7.  *    
  8.  *  FlasKMPEG is free software; you can redistribute it and/or modify
  9.  *  it under the terms of the GNU General Public License as published by
  10.  *  the Free Software Foundation; either version 2, or (at your option)
  11.  *  any later version.
  12.  *   
  13.  *  FlasKMPEG is distributed in the hope that it will be useful,
  14.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  *  GNU General Public License for more details.
  17.  *   
  18.  *  You should have received a copy of the GNU General Public License
  19.  *  along with GNU Make; see the file COPYING.  If not, write to
  20.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  21.  *
  22.  */
  23.  
  24. #ifndef GRAPH_H
  25. #define GRAPH_H
  26.  
  27. // Special AVIplug Handling
  28. #define VXXtype    0x56585858L        // 'VXXX' type
  29. struct TAVIPlugGraphInfo
  30. {
  31.     int Video;
  32.     int Audio;
  33. };
  34.  
  35.  
  36. struct TGraph{
  37.     int  posw;
  38.     int  last55[55];
  39.     int  br_actual,br_max,br_min,br_fr;
  40.     int  last55_input[55];
  41.     int  posw_input;
  42.     __int64 lastfpos,br_avr;
  43. };
  44.  
  45.  
  46. void GraphStart(TGraph *gr);
  47. void DrawGraph(HWND hDlg, TGraph *gr);
  48. void UpdateGraph(TGraph *gr, TAVIPlugGraphInfo *info);
  49.  
  50. #endif